Keycloak REST Services 1.5.0-Final

Path: / admin / realms / {realm} / clients / {id} / nodes

Manually register cluster node to this client - usually it's not needed to call this directly as adapter should handle by sending registration request to Keycloak

Path parameters:
realm - realm name (not id!)
id - id of client (not client-id)

Sub-Resources
Resources
NameDescription
{node}Unregister cluster node from this client

Resource Methods
Method Summary
NameDescription
POST /admin/realms/{realm}/clients/{id}/nodesManually register cluster node to this client - usually it's not needed to call this directly as adapter should handle by sending registration request to Keycloak

Method Detail

POST /admin/realms/{realm}/clients/{id}/nodes

Manually register cluster node to this client - usually it's not needed to call this directly as adapter should handle by sending registration request to Keycloak

HTTP Example:
POST /admin/realms/{realm}/clients/{id}/nodes
API Example:

ClientResource.registerNode({'realm': /* name realm name (not id!) */,
  'id': /* id id of client (not client-id) */,
  '$entity': /* formParams */});

Input:
Map<String,String>
Output:
void
Consumes:
application/json

Keycloak REST Services 1.5.0-Final